3b449edbeb94720e3e813b8130d9b2ebe6fb8c31,src/main/java/net/ntg/ftl/ui/GraphInspector.java,GraphInspector,setupLineGraphInspectorPanel,#,59
Before Change
TogglePanel graphSettingShipSupplies = new TogglePanel("Ship Supplies");
graphSettingShipSupplies.addDataTypeSetting("Scrap", true, false);
graphSettingShipSupplies.addDataTypeSetting("Hull", false, false);
graphSettingShipSupplies.addDataTypeSetting("Fuel", true, false);
graphSettingShipSupplies.addDataTypeSetting("Drone Parts", false, false);
graphSettingShipSupplies.addDataTypeSetting("Missiles", false, false);
After Change
gridC.fill = GridBagConstraints.BOTH;
TogglePanel graphSettingShipLog = new TogglePanel("Ship Log");
graphSettingShipLog.addDataTypeSetting(RecordingHeader.Location.FLEET_ADVANCEMENT, false, true);
graphSettingShipLog.addDataTypeSetting(RecordingHeader.Log.TOTAL_SHIPS_DEFEATED, false, true);
graphSettingShipLog.addDataTypeSetting(RecordingHeader.Log.TOTAL_SCRAP_COLLECTED, false, true);
graphSettingShipLog.addDataTypeSetting(RecordingHeader.Log.TOTAL_CREW_HIRED, false, true);
graphSettingShipLog.addDataTypeSetting(RecordingHeader.Log.SCORE, false, true);
graphInspectorPanel.add(graphSettingShipLog, gridC);
gridC.gridy++;
TogglePanel graphSettingShipSupplies = new TogglePanel("Ship Supplies");
graphSettingShipSupplies.addDataTypeSetting(RecordingHeader.Supplies.SCRAP, true, false);
graphSettingShipSupplies.addDataTypeSetting(RecordingHeader.Supplies.HULL, false, false);
graphSettingShipSupplies.addDataTypeSetting(RecordingHeader.Supplies.FUEL, true, false);
graphSettingShipSupplies.addDataTypeSetting(RecordingHeader.Supplies.DRONE_PARTS, false, false);
graphSettingShipSupplies.addDataTypeSetting(RecordingHeader.Supplies.MISSILES, false, false);
graphSettingShipSupplies.addDataTypeSetting(RecordingHeader.Supplies.CREW_SIZE, false, false);
graphInspectorPanel.add(graphSettingShipSupplies, gridC);
gridC.gridy++;